@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 68.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

header {
    position: relative;
}

header img.logo {
    margin: 2rem .5rem;
}

header .header-container {
    position: absolute;
    top: 25rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

header .header-container section:nth-child(1) {
    width: 37%;
    margin: 0 10% 0 2rem;
}

header .header-container section:nth-child(2) {
    width: 46%;
}

header .slogan {
    background: rgba(255,255,255,0.7);
    padding: 1rem;
}

header .ansprechpartner {
    background: #fff;
    padding: 1rem;
}

header .ansprechpartner p {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

h1, h2, h3 {
    color: #004b98;
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    font-size: 1.9rem;
    line-height: 120%;
}

h2 {
    font-size: 1.5rem;
    line-height: 30px;
}

h2 span {
    font-size: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 30px;
    text-align: center;
    padding: 1rem;
}

h3 span {
    font-weight: 800;
}

h4 {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    border-bottom: 1px dotted #fff;
}

a.btn-apply-blau {
    background: #004c99;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    display: block;
    padding: .5rem 1rem;
}

a.btn-apply-weiss {
    background: #fff;
    color: #004c99;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    display: block;
    margin: 1rem 0 0;
    padding: .5rem 1rem;
}

article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

article p {
    margin: 1rem 0;
}

article section {
    width: calc(95%/2);
    background-color: rgba(224, 224, 224, 0.7);
    margin: 1rem 0;
}

footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    color: #fff;
    background-image: linear-gradient(to right, #005fa3,#004e99,#005fa3,#006bab,#0074b0,#007eb6,#0084b9);
}

footer section:nth-child(1),
footer section:nth-child(3),
footer section:nth-child(5) {
    width: 40%;
    margin-right: 5%;
}

footer section:nth-child(2),
footer section:nth-child(4),
footer section:nth-child(6) {
    width: 55%;
    padding: .5rem 1rem 1rem;
}

footer ul {
    margin: 0 0 0 1rem;
}

@media only screen and (max-width: 68.688rem) {

    #wrapper {
        border: none;
        margin: 0 1.5rem 1rem;
        hyphens: auto;
    }
}

@media only screen and (max-width: 52.188rem) {

    header .header-container {
        position: relative;
        top: 0;
        left: 0;
    }

    header .header-container section:nth-child(1),
    header .header-container section:nth-child(2) {
        width: 100%;
        margin: 0;
    }

    header .slogan,
    header .ansprechpartner {
        padding: 1rem 0;
        text-align: center;
    }

    article {
        margin-bottom: 1rem;
    }

    article section {
        width: 100%;
    }

    footer section:nth-child(1),
    footer section:nth-child(3),
    footer section:nth-child(5),
    footer section:nth-child(2),
    footer section:nth-child(4),
    footer section:nth-child(6) {
        width: 100%;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 30rem) {

    #wrapper {
        margin: 0 1rem 1rem;
    }

    header img.logo {
        margin: 2rem auto;
        display: block;
    }

    footer {
        padding: 1rem;
    }

    footer ul {
        margin: 0 0 0 .5rem;
    }
}